home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
clearbin.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
263 b
|
17 lines
/*
C L E A R B I N . C
*/
#include "iccomp.h"
void clearbin (lval, rval)
ESTRUC_
*lval,
*rval;
{
discard(rval);
discard(lval);
memset(lval, 0, sizeof(ESTRUC_));
lval->type = e_int | e_const;
}